-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move assert_matches to an inner module #86947
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
(I edited the name because "submodule" has a specific meaning WRT git, and I was confused at first.) |
b9d41e6
to
9c1573a
Compare
This comment has been minimized.
This comment has been minimized.
052ea30
to
23bc386
Compare
This comment has been minimized.
This comment has been minimized.
23bc386
to
e304443
Compare
@rfcbot merge |
Team member @yaahc has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
@bors r+ |
📌 Commit e304443 has been approved by |
…, r=yaahc Move assert_matches to an inner module Fixes rust-lang#82913
Rollup of 8 pull requests Successful merges: - rust-lang#85579 (Added Arc::try_pin) - rust-lang#86478 (Add -Zfuture-incompat-test to assist with testing future-incompat reports.) - rust-lang#86947 (Move assert_matches to an inner module) - rust-lang#87081 (Add tracking issue number to `wasi_ext`) - rust-lang#87127 (Add safety comments in private core::slice::rotate::ptr_rotate function) - rust-lang#87134 (Make SelfInTyParamDefault wording not be specific to type defaults) - rust-lang#87147 (Update cargo) - rust-lang#87154 (Fix misuse of rev attribute on <a> tag) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This change is causing lots of downstream build failures (compiling Fuchsia for instance). Choosing to call this In fact, the feature gate for Example, in some code I'm trying to compile since this landed, the original author needs to specify an absolute package path to, for instance, deconflict with a different item in the local mod, with the name I think it might be better to use an item path that isn't already in use, like one of:
|
Oh, good catch. Let's move it to @yaahc , do you have time to do this and handle the backport too? |
I added #87189 for tracking purposes |
@rust-lang/infra this PR changes I assume the change was not present in the PR at the beginning and got added by pushing to the branch later. |
…i-obk rename assert_matches module Fixes nightly breakage introduced in rust-lang#86947
…ulacrum [beta] backports Backports: * Move assert_matches to an inner module rust-lang#86947 * rename assert_matches module rust-lang#87195 * Fix rust-analyzer install when not available. rust-lang#87007
Fixes #82913